.b-push-notification {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: default;
}

.b-push-notification.b-push-notification--hidden {
    z-index: -100;
    opacity: 0;
    transition: opacity .5s, .5s z-index .1s;
}

.b-push-notification.b-push-notification--visible {
    z-index: 100;
    opacity: 1;
    transition: z-index .1s, .5s opacity .1s;
}

.b-push-notification__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.b-push-notification__pop-up {
    position: relative;
    transform: translateY(-50%);
    top: 50%;
    width: 50%;
    padding: 24px 24px 36px 48px;
    box-sizing: border-box;
    margin: 0 auto;
    background: white;
}

@media (max-width: 900px) {
    .b-push-notification__pop-up {
        width: 90%;
        padding: 24px;
    }
}

.b-push-notification__controll.b-push-notification__controll--top {
    margin: 0 0 12px;
    text-align: right;
}

.b-push-notification__controll.b-push-notification__controll--bottom {
    margin: 12px 0 0;
    text-align: left;
}

.b-push-notification__confirm {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    font: normal 14px/14px "RobotoLight", sans-serif;
    text-decoration: none;
    color: #777;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    outline: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.b-push-notification__confirm:hover {
    text-decoration: none;
}

.b-push-notification__unsubscribe {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 0 0 10px;
    background: #fff;
    font: normal 14px/14px "RobotoLight", sans-serif;
    color: #999;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    outline: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.b-push-notification__unsubscribe:hover {
    text-decoration: none;
}

.b-push-notification__refuse {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: transparent url("/i/push-close.png") center center no-repeat;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.b-push-notification__message {
    margin: 12px 0;
}

.b-push-notification__message p {
    font: normal 14px/16px "RobotoLight", sans-serif;
    color: #777;
    margin: 0;
    padding: 0;
}

.b-push-notification__open {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    background: none;
    font: normal 14px/14px "RobotoLight", sans-serif;
    color: #999;
    border: none;
    cursor: pointer;
    outline: none;
}

.b-push-notification__btn {
    display: inline-block;
    margin: 0 18px 0 0;
    padding: 9px 15px;
    color: #000;
    font-size: 12px;
    border-radius: 2px;
    background-color: transparent;
    border: 1px solid #000;
    line-height: 1;
    cursor: pointer;
}

.b-push-notification__btn:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
    text-decoration: none;
}

.b-push-notification__link {
    font-weight: 500;
    font-size: 11px;
    color: #000;
    margin: 10px 0 0;
    display: block;
    float: right;
}